diff --git a/README b/README index a4f4a5b9..944e8063 100644 --- a/README +++ b/README @@ -394,6 +394,13 @@ copyright notices: # # https://www.fontsquirrel.com/license/rubik +* Manrope + # Copyright 2018 The Manrope Project Authors. All rights reserved + # + # TThis Font Software is licensed under the SIL Open Font License, Version 1.1. + # + # https://github.com/sharanda/manrope + ~~~~ Some theme variant files have their own specific licenses; refer to diff --git a/static/fonts/Manrope/manrope-Bold.woff2 b/static/fonts/Manrope/manrope-Bold.woff2 new file mode 100644 index 00000000..8ebc2906 Binary files /dev/null and b/static/fonts/Manrope/manrope-Bold.woff2 differ diff --git a/static/fonts/Manrope/manrope-Light.woff2 b/static/fonts/Manrope/manrope-Light.woff2 new file mode 100644 index 00000000..824736cb Binary files /dev/null and b/static/fonts/Manrope/manrope-Light.woff2 differ diff --git a/static/fonts/Manrope/manrope-Medium.woff2 b/static/fonts/Manrope/manrope-Medium.woff2 new file mode 100644 index 00000000..7cdec8be Binary files /dev/null and b/static/fonts/Manrope/manrope-Medium.woff2 differ diff --git a/static/fonts/Manrope/manrope-Regular.woff2 b/static/fonts/Manrope/manrope-Regular.woff2 new file mode 100644 index 00000000..ff0b6eb8 Binary files /dev/null and b/static/fonts/Manrope/manrope-Regular.woff2 differ diff --git a/static/fonts/Manrope/manrope-SemiBold.woff2 b/static/fonts/Manrope/manrope-SemiBold.woff2 new file mode 100644 index 00000000..bde69ebd Binary files /dev/null and b/static/fonts/Manrope/manrope-SemiBold.woff2 differ diff --git a/static/includes/fonts/_manrope.scss b/static/includes/fonts/_manrope.scss new file mode 100644 index 00000000..03a41503 --- /dev/null +++ b/static/includes/fonts/_manrope.scss @@ -0,0 +1,16 @@ +$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);