publik-base-theme/static/includes/fonts/_manrope.scss

17 lines
499 B
SCSS

$manroppe-font-path: '/static/fonts/Manrope' !default;
@mixin manrope-font($type, $weight, $style: normal) {
@font-face {
font-family: 'Manrope';
src: url('#{$manroppe-font-path}/manrope-#{$type}.woff2') format('woff2');
font-weight: $weight;
font-style: $style;
}
}
@include manrope-font('Light', 300);
@include manrope-font('Regular', 400);
@include manrope-font('Medium', 500);
@include manrope-font('SemiBold', 600);
@include manrope-font('Bold', 700);