size(1000, 500)
# pick a font
font("Skia")
# pick a font size
fontSize(200)
# list all axis from the current font
for axis, data in listFontVariations().items():
    print((axis, data))
# pick a variation from the current font
fontVariations(wght=.6)
# draw text!!
text("Hello Q", (100, 100))
# pick a variation from the current font
fontVariations(wght=3, wdth=1.2)
# draw text!!
text("Hello Q", (100, 300))