14 lines
391 B
SCSS
14 lines
391 B
SCSS
$font-path: "/assets/fonts/";
|
|
|
|
@mixin font-face($name, $weight, $file) {
|
|
@font-face {
|
|
font-family: $name;
|
|
font-style: normal;
|
|
font-weight: $weight;
|
|
src: local($name), url("#{$font-path}#{$file}.woff2") format("woff2");
|
|
}
|
|
}
|
|
|
|
@include font-face("Pacifico", 400, "Pacifico");
|
|
@include font-face("Inter", 400, "Inter-Regular");
|
|
@include font-face("Inter", 700, "Inter-Bold"); |