@fontsource/montserrat
Advanced tools
| @mixin fontFace( | ||
| $fontName: "Montserrat", | ||
| $fontId: "montserrat", | ||
| $style: normal, | ||
| $display: swap, | ||
| $weight: 400, | ||
| $fontDir: "~@fontsource/#{$fontId}/files", | ||
| $unicodeMap: (cyrillic-ext: (U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F), cyrillic: (U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116), vietnamese: (U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB), latin-ext: (U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF), latin: (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)) | ||
| ) { | ||
| @each $subset, $unicodeRangeValues in $unicodeMap { | ||
| @font-face { | ||
| font-family: "#{$fontName}"; | ||
| font-style: $style; | ||
| font-display: $display; | ||
| font-weight: $weight; | ||
| src: url("#{$fontDir}/#{$fontId}-#{$subset}-#{$weight}-#{$style}.woff2") | ||
| format("woff2"), | ||
| url("#{$fontDir}/#{$fontId}-all-#{$weight}-#{$style}.woff") | ||
| format("woff"); | ||
| unicode-range: $unicodeRangeValues; | ||
| } | ||
| } | ||
| } | ||
| @mixin fontFaceCustom( | ||
| $fontName: "Montserrat", | ||
| $fontId: "montserrat", | ||
| $style: normal, | ||
| $display: swap, | ||
| $weight: 400, | ||
| $woff2Path: "~@fontsource/#{$fontId}/files/#{$fontId}-latin-#{$weight}-#{$style}.woff2", | ||
| $woffPath: "~@fontsource/#{$fontId}/files/#{$fontId}-latin-#{$weight}-#{$style}.woff", | ||
| $unicodeRange: false, | ||
| $unicodeRangeValues: (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) | ||
| ) { | ||
| @font-face { | ||
| font-family: "#{$fontName}"; | ||
| font-style: $style; | ||
| font-display: $display; | ||
| font-weight: $weight; | ||
| src: url("#{$woff2Path}") format("woff2"), url("#{$woffPath}") format("woff"); | ||
| @if $unicodeRange { | ||
| unicode-range: $unicodeRangeValues; | ||
| } | ||
| } | ||
| } |
+16
-1
@@ -15,2 +15,12 @@ # Changelog | ||
| ## 4.1.x | ||
| ### Features | ||
| - Added customisable SASS support through mixins for more flexible user setups. [#64](https://github.com/fontsource/fontsource/issues/64) [#122](https://github.com/fontsource/fontsource/pull/122) | ||
| ### Fixes | ||
| - Major refactor to organise the templates and generic packager. [#120](https://github.com/fontsource/fontsource/pull/120) | ||
| ## 4.0.x | ||
@@ -23,3 +33,3 @@ | ||
| - `import @fontsource/<font name>/<weight>` now only contains normal style variants of fonts. The `-normal.css` files throughout the respository have been removed. Importing italic variants remain the same via `import @fontsource/<font name>/<weight>-italic.css`. | ||
| - `import @fontsource/<font name>/<weight>.css` now only contains normal style variants of fonts. The `-normal.css` files throughout the respository have been removed. Importing italic variants remain the same via `import @fontsource/<font name>/<weight>-italic.css`. | ||
| Please see [#88](https://github.com/fontsource/fontsource/issues/88) for more details. [#112](https://github.com/fontsource/fontsource/pull/112) | ||
@@ -31,2 +41,7 @@ | ||
| ### Fixes | ||
| - Add publishConfig to package.json templates for scoped packages to successfully publish. [#118](https://github.com/fontsource/fontsource/pull/118) | ||
| - Generate index.css for fonts that do not have weight 400. [#119](https://github.com/fontsource/fontsource/pull/119) | ||
| # 3.x Release | ||
@@ -33,0 +48,0 @@ |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-100-italic*/ | ||
| local('Montserrat Thin Italic'), | ||
| local('Montserrat-ThinItalic'), | ||
| url('./files/montserrat-cyrillic-100-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-100-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ThinItalic'), url('./files/montserrat-cyrillic-100-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-100-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-cyrillic-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-cyrillic-100-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-100-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-200-italic*/ | ||
| local('Montserrat ExtraLight Italic'), | ||
| local('Montserrat-ExtraLightItalic'), | ||
| url('./files/montserrat-cyrillic-200-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-200-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLightItalic'), url('./files/montserrat-cyrillic-200-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-200-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-cyrillic-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-cyrillic-200-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-200-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-300-italic*/ | ||
| local('Montserrat Light Italic'), | ||
| local('Montserrat-LightItalic'), | ||
| url('./files/montserrat-cyrillic-300-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-300-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-LightItalic'), url('./files/montserrat-cyrillic-300-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-300-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-cyrillic-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-cyrillic-300-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-300-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-400-italic*/ | ||
| local('Montserrat Italic'), | ||
| local('Montserrat-Italic'), | ||
| url('./files/montserrat-cyrillic-400-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-400-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Italic'), url('./files/montserrat-cyrillic-400-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-400-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-cyrillic-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-cyrillic-400-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-400-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-500-italic*/ | ||
| local('Montserrat Medium Italic'), | ||
| local('Montserrat-MediumItalic'), | ||
| url('./files/montserrat-cyrillic-500-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-500-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-MediumItalic'), url('./files/montserrat-cyrillic-500-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-500-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-cyrillic-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-cyrillic-500-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-500-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-600-italic*/ | ||
| local('Montserrat SemiBold Italic'), | ||
| local('Montserrat-SemiBoldItalic'), | ||
| url('./files/montserrat-cyrillic-600-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-600-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBoldItalic'), url('./files/montserrat-cyrillic-600-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-600-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-cyrillic-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-cyrillic-600-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-600-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-700-italic*/ | ||
| local('Montserrat Bold Italic'), | ||
| local('Montserrat-BoldItalic'), | ||
| url('./files/montserrat-cyrillic-700-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-700-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BoldItalic'), url('./files/montserrat-cyrillic-700-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-700-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-cyrillic-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-cyrillic-700-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-700-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-800-italic*/ | ||
| local('Montserrat ExtraBold Italic'), | ||
| local('Montserrat-ExtraBoldItalic'), | ||
| url('./files/montserrat-cyrillic-800-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-800-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBoldItalic'), url('./files/montserrat-cyrillic-800-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-800-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-cyrillic-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-cyrillic-800-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-800-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-900-italic*/ | ||
| local('Montserrat Black Italic'), | ||
| local('Montserrat-BlackItalic'), | ||
| url('./files/montserrat-cyrillic-900-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-900-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BlackItalic'), url('./files/montserrat-cyrillic-900-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-900-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-cyrillic-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-cyrillic-900-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-900-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-100-italic*/ | ||
| local('Montserrat Thin Italic'), | ||
| local('Montserrat-ThinItalic'), | ||
| url('./files/montserrat-cyrillic-ext-100-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-100-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ThinItalic'), url('./files/montserrat-cyrillic-ext-100-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-100-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-cyrillic-ext-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-cyrillic-ext-100-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-100-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-200-italic*/ | ||
| local('Montserrat ExtraLight Italic'), | ||
| local('Montserrat-ExtraLightItalic'), | ||
| url('./files/montserrat-cyrillic-ext-200-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-200-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLightItalic'), url('./files/montserrat-cyrillic-ext-200-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-200-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-cyrillic-ext-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-cyrillic-ext-200-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-200-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-300-italic*/ | ||
| local('Montserrat Light Italic'), | ||
| local('Montserrat-LightItalic'), | ||
| url('./files/montserrat-cyrillic-ext-300-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-300-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-LightItalic'), url('./files/montserrat-cyrillic-ext-300-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-300-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-cyrillic-ext-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-cyrillic-ext-300-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-300-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-400-italic*/ | ||
| local('Montserrat Italic'), | ||
| local('Montserrat-Italic'), | ||
| url('./files/montserrat-cyrillic-ext-400-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-400-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Italic'), url('./files/montserrat-cyrillic-ext-400-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-400-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-cyrillic-ext-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-400-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-500-italic*/ | ||
| local('Montserrat Medium Italic'), | ||
| local('Montserrat-MediumItalic'), | ||
| url('./files/montserrat-cyrillic-ext-500-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-500-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-MediumItalic'), url('./files/montserrat-cyrillic-ext-500-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-500-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-cyrillic-ext-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-cyrillic-ext-500-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-500-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-600-italic*/ | ||
| local('Montserrat SemiBold Italic'), | ||
| local('Montserrat-SemiBoldItalic'), | ||
| url('./files/montserrat-cyrillic-ext-600-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-600-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBoldItalic'), url('./files/montserrat-cyrillic-ext-600-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-600-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-cyrillic-ext-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-600-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-700-italic*/ | ||
| local('Montserrat Bold Italic'), | ||
| local('Montserrat-BoldItalic'), | ||
| url('./files/montserrat-cyrillic-ext-700-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-700-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BoldItalic'), url('./files/montserrat-cyrillic-ext-700-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-700-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-cyrillic-ext-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-700-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-800-italic*/ | ||
| local('Montserrat ExtraBold Italic'), | ||
| local('Montserrat-ExtraBoldItalic'), | ||
| url('./files/montserrat-cyrillic-ext-800-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-800-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBoldItalic'), url('./files/montserrat-cyrillic-ext-800-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-800-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-cyrillic-ext-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-cyrillic-ext-800-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-800-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-900-italic*/ | ||
| local('Montserrat Black Italic'), | ||
| local('Montserrat-BlackItalic'), | ||
| url('./files/montserrat-cyrillic-ext-900-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-900-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BlackItalic'), url('./files/montserrat-cyrillic-ext-900-italic.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-900-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-cyrillic-ext-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-900-normal.woff') format('woff'); | ||
| } |
+18
-27
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-ext-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-cyrillic-ext-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-cyrillic-ext-100-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-100-normal.woff') format('woff'); | ||
| } | ||
@@ -22,5 +21,4 @@ /* montserrat-cyrillic-ext-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-cyrillic-ext-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-cyrillic-ext-200-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-200-normal.woff') format('woff'); | ||
| } | ||
@@ -35,5 +33,4 @@ /* montserrat-cyrillic-ext-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-cyrillic-ext-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-cyrillic-ext-300-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-300-normal.woff') format('woff'); | ||
| } | ||
@@ -48,5 +45,4 @@ /* montserrat-cyrillic-ext-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-cyrillic-ext-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-400-normal.woff') format('woff'); | ||
| } | ||
@@ -61,5 +57,4 @@ /* montserrat-cyrillic-ext-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-cyrillic-ext-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-cyrillic-ext-500-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-500-normal.woff') format('woff'); | ||
| } | ||
@@ -74,5 +69,4 @@ /* montserrat-cyrillic-ext-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-cyrillic-ext-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-600-normal.woff') format('woff'); | ||
| } | ||
@@ -87,5 +81,4 @@ /* montserrat-cyrillic-ext-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-cyrillic-ext-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-700-normal.woff') format('woff'); | ||
| } | ||
@@ -100,5 +93,4 @@ /* montserrat-cyrillic-ext-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-cyrillic-ext-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-cyrillic-ext-800-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-800-normal.woff') format('woff'); | ||
| } | ||
@@ -113,5 +105,4 @@ /* montserrat-cyrillic-ext-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-cyrillic-ext-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-ext-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-ext-900-normal.woff') format('woff'); | ||
| } |
+18
-27
@@ -9,5 +9,4 @@ /* montserrat-cyrillic-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-cyrillic-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-cyrillic-100-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-100-normal.woff') format('woff'); | ||
| } | ||
@@ -22,5 +21,4 @@ /* montserrat-cyrillic-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-cyrillic-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-cyrillic-200-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-200-normal.woff') format('woff'); | ||
| } | ||
@@ -35,5 +33,4 @@ /* montserrat-cyrillic-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-cyrillic-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-cyrillic-300-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-300-normal.woff') format('woff'); | ||
| } | ||
@@ -48,5 +45,4 @@ /* montserrat-cyrillic-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-cyrillic-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-cyrillic-400-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-400-normal.woff') format('woff'); | ||
| } | ||
@@ -61,5 +57,4 @@ /* montserrat-cyrillic-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-cyrillic-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-cyrillic-500-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-500-normal.woff') format('woff'); | ||
| } | ||
@@ -74,5 +69,4 @@ /* montserrat-cyrillic-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-cyrillic-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-cyrillic-600-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-600-normal.woff') format('woff'); | ||
| } | ||
@@ -87,5 +81,4 @@ /* montserrat-cyrillic-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-cyrillic-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-cyrillic-700-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-700-normal.woff') format('woff'); | ||
| } | ||
@@ -100,5 +93,4 @@ /* montserrat-cyrillic-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-cyrillic-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-cyrillic-800-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-800-normal.woff') format('woff'); | ||
| } | ||
@@ -113,5 +105,4 @@ /* montserrat-cyrillic-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-cyrillic-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-cyrillic-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-cyrillic-900-normal.woff2') format('woff2'), url('./files/montserrat-cyrillic-900-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-100-italic*/ | ||
| local('Montserrat Thin Italic'), | ||
| local('Montserrat-ThinItalic'), | ||
| url('./files/montserrat-latin-100-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-100-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ThinItalic'), url('./files/montserrat-latin-100-italic.woff2') format('woff2'), url('./files/montserrat-latin-100-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-latin-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-latin-100-normal.woff2') format('woff2'), url('./files/montserrat-latin-100-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-200-italic*/ | ||
| local('Montserrat ExtraLight Italic'), | ||
| local('Montserrat-ExtraLightItalic'), | ||
| url('./files/montserrat-latin-200-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-200-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLightItalic'), url('./files/montserrat-latin-200-italic.woff2') format('woff2'), url('./files/montserrat-latin-200-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-latin-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-latin-200-normal.woff2') format('woff2'), url('./files/montserrat-latin-200-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-300-italic*/ | ||
| local('Montserrat Light Italic'), | ||
| local('Montserrat-LightItalic'), | ||
| url('./files/montserrat-latin-300-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-300-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-LightItalic'), url('./files/montserrat-latin-300-italic.woff2') format('woff2'), url('./files/montserrat-latin-300-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-latin-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-latin-300-normal.woff2') format('woff2'), url('./files/montserrat-latin-300-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-400-italic*/ | ||
| local('Montserrat Italic'), | ||
| local('Montserrat-Italic'), | ||
| url('./files/montserrat-latin-400-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-400-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Italic'), url('./files/montserrat-latin-400-italic.woff2') format('woff2'), url('./files/montserrat-latin-400-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-latin-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-latin-400-normal.woff2') format('woff2'), url('./files/montserrat-latin-400-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-500-italic*/ | ||
| local('Montserrat Medium Italic'), | ||
| local('Montserrat-MediumItalic'), | ||
| url('./files/montserrat-latin-500-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-500-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-MediumItalic'), url('./files/montserrat-latin-500-italic.woff2') format('woff2'), url('./files/montserrat-latin-500-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-latin-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-latin-500-normal.woff2') format('woff2'), url('./files/montserrat-latin-500-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-600-italic*/ | ||
| local('Montserrat SemiBold Italic'), | ||
| local('Montserrat-SemiBoldItalic'), | ||
| url('./files/montserrat-latin-600-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-600-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBoldItalic'), url('./files/montserrat-latin-600-italic.woff2') format('woff2'), url('./files/montserrat-latin-600-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-latin-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-latin-600-normal.woff2') format('woff2'), url('./files/montserrat-latin-600-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-700-italic*/ | ||
| local('Montserrat Bold Italic'), | ||
| local('Montserrat-BoldItalic'), | ||
| url('./files/montserrat-latin-700-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-700-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BoldItalic'), url('./files/montserrat-latin-700-italic.woff2') format('woff2'), url('./files/montserrat-latin-700-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-latin-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-latin-700-normal.woff2') format('woff2'), url('./files/montserrat-latin-700-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-800-italic*/ | ||
| local('Montserrat ExtraBold Italic'), | ||
| local('Montserrat-ExtraBoldItalic'), | ||
| url('./files/montserrat-latin-800-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-800-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBoldItalic'), url('./files/montserrat-latin-800-italic.woff2') format('woff2'), url('./files/montserrat-latin-800-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-latin-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-latin-800-normal.woff2') format('woff2'), url('./files/montserrat-latin-800-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-900-italic*/ | ||
| local('Montserrat Black Italic'), | ||
| local('Montserrat-BlackItalic'), | ||
| url('./files/montserrat-latin-900-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-900-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BlackItalic'), url('./files/montserrat-latin-900-italic.woff2') format('woff2'), url('./files/montserrat-latin-900-italic.woff') format('woff'); | ||
| } |
+2
-3
@@ -9,5 +9,4 @@ /* montserrat-latin-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-latin-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-latin-900-normal.woff2') format('woff2'), url('./files/montserrat-latin-900-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-100-italic*/ | ||
| local('Montserrat Thin Italic'), | ||
| local('Montserrat-ThinItalic'), | ||
| url('./files/montserrat-latin-ext-100-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-100-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ThinItalic'), url('./files/montserrat-latin-ext-100-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-100-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-latin-ext-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-latin-ext-100-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-100-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-200-italic*/ | ||
| local('Montserrat ExtraLight Italic'), | ||
| local('Montserrat-ExtraLightItalic'), | ||
| url('./files/montserrat-latin-ext-200-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-200-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLightItalic'), url('./files/montserrat-latin-ext-200-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-200-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-latin-ext-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-latin-ext-200-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-200-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-300-italic*/ | ||
| local('Montserrat Light Italic'), | ||
| local('Montserrat-LightItalic'), | ||
| url('./files/montserrat-latin-ext-300-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-300-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-LightItalic'), url('./files/montserrat-latin-ext-300-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-300-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-latin-ext-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-latin-ext-300-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-300-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-400-italic*/ | ||
| local('Montserrat Italic'), | ||
| local('Montserrat-Italic'), | ||
| url('./files/montserrat-latin-ext-400-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-400-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Italic'), url('./files/montserrat-latin-ext-400-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-400-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-latin-ext-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-latin-ext-400-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-400-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-500-italic*/ | ||
| local('Montserrat Medium Italic'), | ||
| local('Montserrat-MediumItalic'), | ||
| url('./files/montserrat-latin-ext-500-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-500-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-MediumItalic'), url('./files/montserrat-latin-ext-500-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-500-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-latin-ext-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-latin-ext-500-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-500-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-600-italic*/ | ||
| local('Montserrat SemiBold Italic'), | ||
| local('Montserrat-SemiBoldItalic'), | ||
| url('./files/montserrat-latin-ext-600-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-600-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBoldItalic'), url('./files/montserrat-latin-ext-600-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-600-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-latin-ext-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-latin-ext-600-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-600-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-700-italic*/ | ||
| local('Montserrat Bold Italic'), | ||
| local('Montserrat-BoldItalic'), | ||
| url('./files/montserrat-latin-ext-700-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-700-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BoldItalic'), url('./files/montserrat-latin-ext-700-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-700-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-latin-ext-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-latin-ext-700-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-700-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-800-italic*/ | ||
| local('Montserrat ExtraBold Italic'), | ||
| local('Montserrat-ExtraBoldItalic'), | ||
| url('./files/montserrat-latin-ext-800-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-800-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBoldItalic'), url('./files/montserrat-latin-ext-800-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-800-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-latin-ext-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-latin-ext-800-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-800-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-900-italic*/ | ||
| local('Montserrat Black Italic'), | ||
| local('Montserrat-BlackItalic'), | ||
| url('./files/montserrat-latin-ext-900-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-900-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BlackItalic'), url('./files/montserrat-latin-ext-900-italic.woff2') format('woff2'), url('./files/montserrat-latin-ext-900-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-latin-ext-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-latin-ext-900-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-900-normal.woff') format('woff'); | ||
| } |
+18
-27
@@ -9,5 +9,4 @@ /* montserrat-latin-ext-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-latin-ext-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-latin-ext-100-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-100-normal.woff') format('woff'); | ||
| } | ||
@@ -22,5 +21,4 @@ /* montserrat-latin-ext-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-latin-ext-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-latin-ext-200-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-200-normal.woff') format('woff'); | ||
| } | ||
@@ -35,5 +33,4 @@ /* montserrat-latin-ext-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-latin-ext-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-latin-ext-300-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-300-normal.woff') format('woff'); | ||
| } | ||
@@ -48,5 +45,4 @@ /* montserrat-latin-ext-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-latin-ext-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-latin-ext-400-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-400-normal.woff') format('woff'); | ||
| } | ||
@@ -61,5 +57,4 @@ /* montserrat-latin-ext-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-latin-ext-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-latin-ext-500-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-500-normal.woff') format('woff'); | ||
| } | ||
@@ -74,5 +69,4 @@ /* montserrat-latin-ext-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-latin-ext-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-latin-ext-600-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-600-normal.woff') format('woff'); | ||
| } | ||
@@ -87,5 +81,4 @@ /* montserrat-latin-ext-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-latin-ext-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-latin-ext-700-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-700-normal.woff') format('woff'); | ||
| } | ||
@@ -100,5 +93,4 @@ /* montserrat-latin-ext-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-latin-ext-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-latin-ext-800-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-800-normal.woff') format('woff'); | ||
| } | ||
@@ -113,5 +105,4 @@ /* montserrat-latin-ext-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-latin-ext-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-ext-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-latin-ext-900-normal.woff2') format('woff2'), url('./files/montserrat-latin-ext-900-normal.woff') format('woff'); | ||
| } |
+18
-27
@@ -9,5 +9,4 @@ /* montserrat-latin-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-latin-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-latin-100-normal.woff2') format('woff2'), url('./files/montserrat-latin-100-normal.woff') format('woff'); | ||
| } | ||
@@ -22,5 +21,4 @@ /* montserrat-latin-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-latin-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-latin-200-normal.woff2') format('woff2'), url('./files/montserrat-latin-200-normal.woff') format('woff'); | ||
| } | ||
@@ -35,5 +33,4 @@ /* montserrat-latin-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-latin-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-latin-300-normal.woff2') format('woff2'), url('./files/montserrat-latin-300-normal.woff') format('woff'); | ||
| } | ||
@@ -48,5 +45,4 @@ /* montserrat-latin-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-latin-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-latin-400-normal.woff2') format('woff2'), url('./files/montserrat-latin-400-normal.woff') format('woff'); | ||
| } | ||
@@ -61,5 +57,4 @@ /* montserrat-latin-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-latin-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-latin-500-normal.woff2') format('woff2'), url('./files/montserrat-latin-500-normal.woff') format('woff'); | ||
| } | ||
@@ -74,5 +69,4 @@ /* montserrat-latin-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-latin-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-latin-600-normal.woff2') format('woff2'), url('./files/montserrat-latin-600-normal.woff') format('woff'); | ||
| } | ||
@@ -87,5 +81,4 @@ /* montserrat-latin-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-latin-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-latin-700-normal.woff2') format('woff2'), url('./files/montserrat-latin-700-normal.woff') format('woff'); | ||
| } | ||
@@ -100,5 +93,4 @@ /* montserrat-latin-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-latin-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-latin-800-normal.woff2') format('woff2'), url('./files/montserrat-latin-800-normal.woff') format('woff'); | ||
| } | ||
@@ -113,5 +105,4 @@ /* montserrat-latin-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-latin-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-latin-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-latin-900-normal.woff2') format('woff2'), url('./files/montserrat-latin-900-normal.woff') format('woff'); | ||
| } |
+2
-2
| { | ||
| "name": "@fontsource/montserrat", | ||
| "version": "4.0.1", | ||
| "version": "4.1.0", | ||
| "description": "Montserrat font in NPM glory.", | ||
@@ -25,3 +25,3 @@ "main": "index.css", | ||
| }, | ||
| "gitHead": "dd7a4e2dfdebc6c20c3fadef27fdc60c51e0baed" | ||
| "gitHead": "7c3699bded5aa61c8ec25dbd813b6e68374dafe1" | ||
| } |
+25
-1
@@ -35,2 +35,26 @@ # Fontsource Montserrat | ||
| For more advanced setups, you can use our highly customisable Sass mixins that can modify many of the existing @font-face variables. | ||
| ```scss | ||
| @import "~@fontsource/montserrat/scss/mixins"; | ||
| // Uses a unicode-range map to automatically generate multiple @font-face rules. | ||
| @include fontFace( | ||
| $weight: 500, | ||
| $display: fallback, | ||
| $fontDir: "~@fontsource/montserrat/files" | ||
| ); | ||
| // Fully customisable single @font-face mixin. | ||
| @include fontFaceCustom( | ||
| $weight: 600, | ||
| $display: optional, | ||
| $woff2Path: "~@fontsource/montserrat/files/montserrat-latin-500-normal.woff2", | ||
| $unicodeRange: false | ||
| ); | ||
| // More options available in link below. | ||
| ``` | ||
| You can see all of the existing inputtable mixin variables [here](https://github.com/fontsource/fontsource/tree/master/packages/montserrat/scss/mixins.scss). | ||
| _These examples may not reflect actual compatibility. Please refer below._ | ||
@@ -58,3 +82,3 @@ | ||
| import "@fontsource/montserrat/cyrillic-ext-500.css" // Weight 500 with normal style. | ||
| import "@fontsource/montserrat/greek-900-normal.css" // Italic variant. | ||
| import "@fontsource/montserrat/greek-900-italic.css" // Italic variant. | ||
| ``` | ||
@@ -61,0 +85,0 @@ |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-100-italic*/ | ||
| local('Montserrat Thin Italic'), | ||
| local('Montserrat-ThinItalic'), | ||
| url('./files/montserrat-vietnamese-100-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-100-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ThinItalic'), url('./files/montserrat-vietnamese-100-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-100-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-vietnamese-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-vietnamese-100-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-100-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-200-italic*/ | ||
| local('Montserrat ExtraLight Italic'), | ||
| local('Montserrat-ExtraLightItalic'), | ||
| url('./files/montserrat-vietnamese-200-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-200-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLightItalic'), url('./files/montserrat-vietnamese-200-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-200-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-vietnamese-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-vietnamese-200-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-200-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-300-italic*/ | ||
| local('Montserrat Light Italic'), | ||
| local('Montserrat-LightItalic'), | ||
| url('./files/montserrat-vietnamese-300-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-300-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-LightItalic'), url('./files/montserrat-vietnamese-300-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-300-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-vietnamese-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-vietnamese-300-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-300-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-400-italic*/ | ||
| local('Montserrat Italic'), | ||
| local('Montserrat-Italic'), | ||
| url('./files/montserrat-vietnamese-400-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-400-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Italic'), url('./files/montserrat-vietnamese-400-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-400-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-vietnamese-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-vietnamese-400-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-400-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-500-italic*/ | ||
| local('Montserrat Medium Italic'), | ||
| local('Montserrat-MediumItalic'), | ||
| url('./files/montserrat-vietnamese-500-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-500-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-MediumItalic'), url('./files/montserrat-vietnamese-500-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-500-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-vietnamese-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-vietnamese-500-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-500-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-600-italic*/ | ||
| local('Montserrat SemiBold Italic'), | ||
| local('Montserrat-SemiBoldItalic'), | ||
| url('./files/montserrat-vietnamese-600-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-600-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBoldItalic'), url('./files/montserrat-vietnamese-600-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-600-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-vietnamese-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-vietnamese-600-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-600-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-700-italic*/ | ||
| local('Montserrat Bold Italic'), | ||
| local('Montserrat-BoldItalic'), | ||
| url('./files/montserrat-vietnamese-700-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-700-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BoldItalic'), url('./files/montserrat-vietnamese-700-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-700-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-vietnamese-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-vietnamese-700-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-700-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-800-italic*/ | ||
| local('Montserrat ExtraBold Italic'), | ||
| local('Montserrat-ExtraBoldItalic'), | ||
| url('./files/montserrat-vietnamese-800-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-800-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBoldItalic'), url('./files/montserrat-vietnamese-800-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-800-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-vietnamese-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-vietnamese-800-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-800-normal.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-900-italic*/ | ||
| local('Montserrat Black Italic'), | ||
| local('Montserrat-BlackItalic'), | ||
| url('./files/montserrat-vietnamese-900-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-900-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-BlackItalic'), url('./files/montserrat-vietnamese-900-italic.woff2') format('woff2'), url('./files/montserrat-vietnamese-900-italic.woff') format('woff'); | ||
| } |
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-vietnamese-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-vietnamese-900-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-900-normal.woff') format('woff'); | ||
| } |
+18
-27
@@ -9,5 +9,4 @@ /* montserrat-vietnamese-100-normal*/ | ||
| local('Montserrat Thin'), | ||
| local('Montserrat-Thin'), | ||
| url('./files/montserrat-vietnamese-100-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-100-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Thin'), url('./files/montserrat-vietnamese-100-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-100-normal.woff') format('woff'); | ||
| } | ||
@@ -22,5 +21,4 @@ /* montserrat-vietnamese-200-normal*/ | ||
| local('Montserrat ExtraLight'), | ||
| local('Montserrat-ExtraLight'), | ||
| url('./files/montserrat-vietnamese-200-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-200-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraLight'), url('./files/montserrat-vietnamese-200-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-200-normal.woff') format('woff'); | ||
| } | ||
@@ -35,5 +33,4 @@ /* montserrat-vietnamese-300-normal*/ | ||
| local('Montserrat Light'), | ||
| local('Montserrat-Light'), | ||
| url('./files/montserrat-vietnamese-300-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-300-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Light'), url('./files/montserrat-vietnamese-300-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-300-normal.woff') format('woff'); | ||
| } | ||
@@ -48,5 +45,4 @@ /* montserrat-vietnamese-400-normal*/ | ||
| local('Montserrat Regular'), | ||
| local('Montserrat-Regular'), | ||
| url('./files/montserrat-vietnamese-400-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-400-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Regular'), url('./files/montserrat-vietnamese-400-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-400-normal.woff') format('woff'); | ||
| } | ||
@@ -61,5 +57,4 @@ /* montserrat-vietnamese-500-normal*/ | ||
| local('Montserrat Medium'), | ||
| local('Montserrat-Medium'), | ||
| url('./files/montserrat-vietnamese-500-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-500-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Medium'), url('./files/montserrat-vietnamese-500-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-500-normal.woff') format('woff'); | ||
| } | ||
@@ -74,5 +69,4 @@ /* montserrat-vietnamese-600-normal*/ | ||
| local('Montserrat SemiBold'), | ||
| local('Montserrat-SemiBold'), | ||
| url('./files/montserrat-vietnamese-600-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-600-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-SemiBold'), url('./files/montserrat-vietnamese-600-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-600-normal.woff') format('woff'); | ||
| } | ||
@@ -87,5 +81,4 @@ /* montserrat-vietnamese-700-normal*/ | ||
| local('Montserrat Bold'), | ||
| local('Montserrat-Bold'), | ||
| url('./files/montserrat-vietnamese-700-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-700-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Bold'), url('./files/montserrat-vietnamese-700-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-700-normal.woff') format('woff'); | ||
| } | ||
@@ -100,5 +93,4 @@ /* montserrat-vietnamese-800-normal*/ | ||
| local('Montserrat ExtraBold'), | ||
| local('Montserrat-ExtraBold'), | ||
| url('./files/montserrat-vietnamese-800-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-800-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-ExtraBold'), url('./files/montserrat-vietnamese-800-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-800-normal.woff') format('woff'); | ||
| } | ||
@@ -113,5 +105,4 @@ /* montserrat-vietnamese-900-normal*/ | ||
| local('Montserrat Black'), | ||
| local('Montserrat-Black'), | ||
| url('./files/montserrat-vietnamese-900-normal.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
| url('./files/montserrat-vietnamese-900-normal.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
| local('Montserrat-Black'), url('./files/montserrat-vietnamese-900-normal.woff2') format('woff2'), url('./files/montserrat-vietnamese-900-normal.woff') format('woff'); | ||
| } |
318
0.32%98
32.43%5532341
-0.17%2219
-10.85%