redacted.life/scss/_fonts.scss

24 lines
405 B
SCSS
Raw Permalink Normal View History

2020-01-20 18:46:15 +01:00
/* latin */
@font-face {
2020-01-26 22:13:09 +01:00
font-family: 'Lato';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(../fonts/Lato-Regular.ttf);
2020-01-20 18:46:15 +01:00
}
/* latin */
@font-face {
2020-01-26 22:13:09 +01:00
font-family: 'Montserrat';
font-style: normal;
font-display: swap;
src: url(../fonts/Montserrat-Bold.ttf);
2020-01-20 18:46:15 +01:00
}
@mixin body-font {
2020-01-26 22:13:09 +01:00
font-family: "Lato", sans-serif;
2020-01-20 18:46:15 +01:00
}
@mixin title-font {
2020-01-26 22:13:09 +01:00
font-family: "Montserrat", sans-serif;
2020-01-20 18:46:15 +01:00
}