In SwiftUI you get all these handy little Font convenience accessors like Font.caption, Font.title, Font.body, etc..
e.g.
VStack {
Text("Some Title").font(Font.title)
Text("Some Caption Text").font(Font.caption)
}
They all specify different font styles for the default Helvetica font family. I'd like to use these very helpful convenience accessors without ever using Helvetica in my app. Can I change the default font family? Or do I constantly have to apply custom fonts like e.g.:
Text("Custom Text").font(Font.custom("SourceSansPro-Regular", size: 14.0)