// Roboto as default Mekari fontfamily $font-family: "Roboto"; $fonts: ( 300: "Regular", 400: "Regular", 500: "Medium", 700: "Medium", 900: "Medium" ); $font-path: #{"../../fonts/Roboto/Roboto-"}; @each $font-weight, $font-type in $fonts { $src: #{$font-path}#{$font-type}; @font-face { font-family: $font-family; font-style: normal; font-weight: #{$font-weight}; src: local($font-family); src: url("#{$src}.ttf") format("truetype"); } }