Suppose I add just one custom font `montserrat_reg...
# compose
h
Suppose I add just one custom font
montserrat_regular.ttf
and make a fontFamily
Copy code
val Montserrat = FontFamily(
    Font(R.font.montserrat_regular),
)
and then typography:
Copy code
val Typography = Typography( 
        labelSmall = TextStyle(
        fontFamily = Montserrat,
        fontWeight = FontWeight.Bold,
        fontSize = 14.sp
    ),

    bodyLarge = TextStyle(
        fontFamily = Montserrat,
        fontWeight = FontWeight.Normal,
        fontSize = 14.sp
    )
)
my question is: how this
labelSmall
textStyle having
fontWeight.Bold
behaves differently if i have added extra font
montserrat_bold.ttf
and added to fontFamily like this:
Copy code
val Montserrat = FontFamily(
    Font(R.font.montserrat_regular),
    Font(R.font.montserrat_bold, FontWeight.Bold)
)