/* 
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.
*/
/*GOTHAM BOLD*/
@font-face {
     font-family: 'Gotham Bold';
     src: local('Gotham Bold'),
         url('/rev_slider_fonts/Gotham-Bold.woff2') format('woff2'),
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }

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

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

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

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

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

/*GOTHAM MEDIUM*/
@font-face {
     font-family: 'Gotham Medium Italic';
     src: local('Gotham Medium Italic'),
         url('/rev_slider_fonts/Gotham-MediumItalic.woff2') format('woff2'),
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }

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