/* 
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 Black';
     src: local('Gotham Black'),
         url('/webfont/gotham-black-webfont.woff2') format('woff2');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
    font-family: 'Gotham Thin';
    src: local('Gotham Thin'),
        url('/webfont/gotham-thin-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

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

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

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

@font-face {
    font-family: 'Gotham Medium';
    src: local('Gotham Medium'),
        url('/webfont/gothammedium-webfont.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: 'Custom Font';
     src: local('Custom Font'),
         url('/webfont/custom-font-bold.woff2') format('woff2'),
         url('/webfont/custom-font-bold.woff') format('woff');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

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