diff --git a/assets/fonts/Comfortaa-Latin-Light.woff b/assets/fonts/Comfortaa-Latin-Light.woff new file mode 100644 index 0000000..ea2f7d5 Binary files /dev/null and b/assets/fonts/Comfortaa-Latin-Light.woff differ diff --git a/assets/fonts/Comfortaa-Latin.woff2 b/assets/fonts/Comfortaa-Latin.woff2 new file mode 100644 index 0000000..a392f99 Binary files /dev/null and b/assets/fonts/Comfortaa-Latin.woff2 differ diff --git a/scss/_fonts.scss b/scss/_fonts.scss new file mode 100644 index 0000000..2861ea9 --- /dev/null +++ b/scss/_fonts.scss @@ -0,0 +1,28 @@ +/* latin */ +@font-face { + font-family: 'Comfortaa'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url(../fonts/Comfortaa-Latin-Light.woff) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* latin */ +@font-face { + font-family: 'Comfortaa'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(../fonts/Comfortaa-Latin.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +@mixin body-font { + font-family: "Comfortaa", sans-serif; + font-weight: 300; +} + +@mixin title-font { + font-family: "Comfortaa", sans-serif; + font-weight: 700; +}