53 lines
1.3 KiB
SCSS
53 lines
1.3 KiB
SCSS
/*
|
|
Font Weights:
|
|
100 - Thin
|
|
200 - Extra Light (Ultra Light)
|
|
300 - Light
|
|
400 - Normal
|
|
500 - Medium
|
|
600 - Semi Bold (Demi Bold)
|
|
700 - Bold
|
|
800 - Extra Bold (Ultra Bold)
|
|
900 - Black (Heavy)
|
|
*/
|
|
|
|
/* ARIAL NARROW */
|
|
@font-face {
|
|
font-family: 'Arial Narrow';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: url('/fonts/arial-narrow-bold.woff2') format('woff2'),
|
|
url('/fonts/arial-narrow-bold.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Arial Narrow';
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
src: url('/fonts/arial-narrow-bold-italic.woff2') format('woff2'),
|
|
url('/fonts/arial-narrow-bold-italic.woff') format('woff');
|
|
}
|
|
|
|
/* DRUK WIDE */
|
|
@font-face {
|
|
font-family: 'Druk Wide';
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
src: url('/fonts/druk-wide-cy-tt-super.woff2') format('woff2'),
|
|
url('/fonts/druk-wide-cy-tt-super.woff') format('woff');
|
|
}
|
|
|
|
/* GT SUPER */
|
|
@font-face {
|
|
font-family: 'GT Super';
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src: url('/fonts/gt-super-display-regular-italic.woff2') format('woff2'),
|
|
url('/fonts/gt-super-display-regular-italic.woff') format('woff');
|
|
}
|
|
|
|
:root {
|
|
--font-arial: 'Arial Narrow', sans-serif;
|
|
--font-druk: 'Druk Wide', sans-serif;
|
|
--font-gt: 'GT Super', serif;
|
|
}
|