You cannot currently use the included iOS fonts in WatchKit. Only system available (San Francisco). Source: Apple Developer Forums
However, you can use your own font by adding a font file to the project:
Drag and drop font files into the project navigator

Include a custom font file in your WatchKit app and WatchKit extension.

Add the fonts provided by the application (UIAppFonts) to both your WatchKit and WatchKit Extension Info.plist application

Add this code to awakeWithContext to find out the correct font name, so you can call your code later:
print("Custom font names:") print(UIFont.fontNames(forFamilyName: "Exo")) print(UIFont.fontNames(forFamilyName: "Tabardo"))
Launch the application and pay attention to the font names printed on the debug console. When you know the correct name, you can add this code somewhere in the WatchKit extension:
var fontSize = CGFloat(32) var text = "so cool" var cstmFont = UIFont(name: "Tabardo", size: fontSize)! var attrStr = NSAttributedString(string: text, attributes: [NSFontAttributeName: cstmFont]) firstLabel.setAttributedText(attrStr) fontSize = CGFloat(36) text = "right on!" cstmFont = UIFont(name: "Exo-Regular", size: fontSize)! attrStr = NSAttributedString(string: text, attributes: [NSFontAttributeName: cstmFont]) secondLabel.setAttributedText(attrStr)
Customize custom fonts on your watch!

Keep in mind that looks and notifications cannot use custom fonts. If you want to use it there, you will have to use a rendered image. However, since views and notifications must load quickly, you will want this image to be ready for use when it is called up.
Ben morrow
source share