diff --git a/README b/README index 94d022d5..f99b293d 100644 --- a/README +++ b/README @@ -164,6 +164,13 @@ copyright notices: # # https://www.fontsquirrel.com/license/poppins +* Now Alt + # Copyright (c) 2015, Alfredo Marco Pradil + # (), + # with Reserved Font Name Now Alt. + # + # This Font Software is licensed under the SIL Open Font License, Version 1.1 + ~~~~ Some theme variant files have their own specific licenses; refer to diff --git a/static/fonts/NowAlt/nowalt-black-webfont.woff b/static/fonts/NowAlt/nowalt-black-webfont.woff new file mode 100644 index 00000000..1ec472a2 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-black-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-black-webfont.woff2 b/static/fonts/NowAlt/nowalt-black-webfont.woff2 new file mode 100644 index 00000000..2ade12c3 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-black-webfont.woff2 differ diff --git a/static/fonts/NowAlt/nowalt-bold-webfont.woff b/static/fonts/NowAlt/nowalt-bold-webfont.woff new file mode 100644 index 00000000..921fbf7e Binary files /dev/null and b/static/fonts/NowAlt/nowalt-bold-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-bold-webfont.woff2 b/static/fonts/NowAlt/nowalt-bold-webfont.woff2 new file mode 100644 index 00000000..a33df31b Binary files /dev/null and b/static/fonts/NowAlt/nowalt-bold-webfont.woff2 differ diff --git a/static/fonts/NowAlt/nowalt-light-webfont.woff b/static/fonts/NowAlt/nowalt-light-webfont.woff new file mode 100644 index 00000000..62848101 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-light-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-light-webfont.woff2 b/static/fonts/NowAlt/nowalt-light-webfont.woff2 new file mode 100644 index 00000000..d2bbdad1 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-light-webfont.woff2 differ diff --git a/static/fonts/NowAlt/nowalt-medium-webfont.woff b/static/fonts/NowAlt/nowalt-medium-webfont.woff new file mode 100644 index 00000000..38b76a24 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-medium-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-medium-webfont.woff2 b/static/fonts/NowAlt/nowalt-medium-webfont.woff2 new file mode 100644 index 00000000..5557d914 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-medium-webfont.woff2 differ diff --git a/static/fonts/NowAlt/nowalt-regular-webfont.woff b/static/fonts/NowAlt/nowalt-regular-webfont.woff new file mode 100644 index 00000000..450fb5b6 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-regular-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-regular-webfont.woff2 b/static/fonts/NowAlt/nowalt-regular-webfont.woff2 new file mode 100644 index 00000000..27d63c79 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-regular-webfont.woff2 differ diff --git a/static/fonts/NowAlt/nowalt-thin-webfont.woff b/static/fonts/NowAlt/nowalt-thin-webfont.woff new file mode 100644 index 00000000..894ea694 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-thin-webfont.woff differ diff --git a/static/fonts/NowAlt/nowalt-thin-webfont.woff2 b/static/fonts/NowAlt/nowalt-thin-webfont.woff2 new file mode 100644 index 00000000..7fb71a74 Binary files /dev/null and b/static/fonts/NowAlt/nowalt-thin-webfont.woff2 differ diff --git a/static/includes/_font-nowalt.scss b/static/includes/_font-nowalt.scss new file mode 100644 index 00000000..0ffb4d69 --- /dev/null +++ b/static/includes/_font-nowalt.scss @@ -0,0 +1,16 @@ +@mixin nowalt-font($type, $weight) { + @font-face { + font-family: 'Now Alt'; + src: url('/static/fonts/NowAlt/nowalt-#{$type}-webfont.woff2') format('woff2'), + url('/static/fonts/NowAlt/nowalt-#{$type}-webfont.woff') format('woff'); + font-weight: $weight; + font-style: normal; + } +} + +@include nowalt-font('thin', 100); +@include nowalt-font('light', 300); +@include nowalt-font('regular', 400); +@include nowalt-font('medium', 500); +@include nowalt-font('bold', 700); +@include nowalt-font('black', 900);