let pointSize = 60.0
let systemFontDesc = UIFont.systemFont(
		ofSize: pointSize, weight: UIFontWeightLight).fontDescriptor()
let highLegibilityFontDesc = systemFontDesc.addingAttributes(
	[
		UIFontDescriptorFeatureSettingAttribute:
		[
			[
				UIFontFeatureTypeIdentifierKey: kStylisticAlternativesType,
				UIFontFeatureSelectorIdentifierKey: kStylisticAltSixOnSelector,
			]
		]
	]
)

label.font = UIFont(descriptor: highLegibilityFontDesc, size: pointSize)

let pointSize = 60.0
let systemFontDesc = UIFont.systemFont(
		ofSize: pointSize, weight: UIFontWeightLight).fontDescriptor()
let highLegibilityFontDesc = systemFontDesc.addingAttributes(
	[
		UIFontDescriptorFeatureSettingAttribute:
		[
			[
				UIFontFeatureTypeIdentifierKey: kUpperCaseType,
				UIFontFeatureSelectorIdentifierKey: kUpperCaseSmallCapsSelector,
			]
		]
	]
)

label.font = UIFont(descriptor: highLegibilityFontDesc, size: pointSize)