/*
CSS for the normal weight and style file for a custom font.
Attempts to load the file locally first.
Use the line that loads a woff2 version of the font if you have the required file,
or else delete that line and just use the woff file loading line.
Uses font-display:swap; to help the loading process.
*/
@font-face {
font-family: 'Gotham-Regular';
src: local('Gotham-Regular'),
url('/webfont/Gotham-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}

/*
Include an additional @font-face block for each font file in the family.
Change the font-weight and font-style value to match each font file
*/
@font-face {
font-family: 'GothamBook';
src: local('GothamBook'),
url('/webfont/GothamBook.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
 }

@font-face {
font-family: 'Gotham';
src: local('Gotham'),
url('/webfont/Gotham.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Medium';
src: local('Gotham-Medium'),
url('/webfont/Gotham-Medium.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Italic';
src: local('Gotham-Italic'),
url('/webfont/Gotham-Italic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}


@font-face {
font-family: 'Gotham-Light';
src: local('Gotham-Light'),
url('/webfont/Gotham-Light.woff2') format('woff2');
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400; /* normal */
font-weight: 500;
font-weight: 600;
font-weight: 700; /* bold */
font-weight: 800;
font-weight: 900;
font-display: swap;
}

@font-face {
font-family: 'Gotham-LightItalic';
src: local('Gotham-LightItalic'),
url('/webfont/Gotham-LightItalic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-ItalicBold';
src: local('Gotham-ItalicBold'),
url('/webfont/Gotham-ItalicBold.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Thin';
src: local('Gotham-Thin'),
url('/webfont/Gotham-Thin.woff2') format('woff2');
font-weight: lighter;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Ultra';
src: local('Gotham-Ultra'),
url('/webfont/Gotham-Ultra.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-UltraItalic';
src: local('Gotham-UltraItalic'),
url('/webfont/Gotham-UltraItalic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Gotham-ExtraLight';
src: local('Gotham-ExtraLight'),
url('/webfont/Gotham-ExtraLight.woff2') format('woff2');
font-weight: normal;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Black';
src: local('Gotham-Black'),
url('/webfont/Gotham-Black.woff2') format('woff2');
font-weight: bolder;
font-display: swap;
}

@font-face {
font-family: 'Gotham-Bold';
src: local('Gotham-Bold'),
url('/webfont/Gotham-Bold.woff2') format('woff2');
font-weight: bold;
font-display: swap;
}

@font-face {
font-family: 'Gotham-BookItalic';
src: local('Gotham-BookItalic'),
url('/webfont/Gotham-BookItalic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
font-display: swap;
}
