/* 
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: 'Faffin Light';
     src: local('Faffin Light'),
         url('/webfont/faffin-light.woff2') format('woff2');
         
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

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

@font-face {
     font-family: 'Faffin Bold';
     src: local('Faffin Bold'),
         url('/webfont/faffin-bold.woff2') format('woff2');
         
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
     font-family: 'Phoveus Bold';
     src: local('Phoveus Bold'),
         url('/webfont/phoveus-bold.woff2') format('woff2');
         
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

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


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