@Composable
private fun InterFont() = FontFamily(
Font(resource = Res.font.montserrat, weight = FontWeight.Normal),
Font(resource = Res.font.montserrat, weight = FontWeight.Medium)
)
private val typography = Typography()
@Composable
internal fun medAppTypography() = Typography(
displayLarge = typography.displayLarge.copy(fontFamily = InterFont()),
displayMedium = typography.displayMedium.copy(fontFamily = InterFont()),
displaySmall = typography.displaySmall.copy(fontFamily = InterFont()),
headlineLarge = typography.headlineLarge.copy(fontFamily = InterFont()),
headlineMedium = typography.headlineMedium.copy(fontFamily = InterFont()),
headlineSmall = typography.headlineSmall.copy(fontFamily = InterFont()),
titleLarge = typography.titleLarge.copy(fontFamily = InterFont()),
titleMedium = typography.titleMedium.copy(fontFamily = InterFont()),
titleSmall = typography.titleSmall.copy(fontFamily = InterFont()),
bodyLarge = typography.bodyLarge.copy(fontFamily = InterFont()),
bodyMedium = typography.bodyMedium.copy(fontFamily = InterFont()),
bodySmall = typography.bodySmall.copy(fontFamily = InterFont()),
labelLarge = typography.labelLarge.copy(fontFamily = InterFont()),
labelMedium = typography.labelMedium.copy(fontFamily = InterFont()),
labelSmall = typography.labelSmall.copy(fontFamily = InterFont()),
)