Why can the app use SF Pro Rounded fonts in commercial?

I like this font. but in license only allowed for use in Mockup UI. Feel free to use in commercial?

https://mobbin.com/apps/bloom-ios-e1251835-34e6-426e-9f94-f9595f2567fa/1c919e9a-d144-4aa0-b788-f9752111e281/screens

You can use the rounded variant of San Francisco font in your iOS app. For example:

// Create a rounded variant using font descirptor
let sysFont = UIFont.systemFont(ofSize: 12)
if let descRound = sysFont.fontDescriptor.withDesign(.rounded) {
    let roundedSysFont = UIFont(descriptor: descRound, size: 12)
}
Why can the app use SF Pro Rounded fonts in commercial?
 
 
Q