You can also choose from among all the different system-font's weights via the attributedText approach. For instance, this effectively renders my text bold for this label-node (in iOS 14.5):
SKLabelNode(
attributedText: NSAttributedString(
string: text,
attributes: [.font: UIFont.systemFont(ofSize: 16, weight: .bold)]
)
)