/* 
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: 'Futura PT Light';
     src: local('Futura PT Light'),
         url('/webfont/FuturaCyrillicLight.woff2') format('woff2'),
         url('/webfont/FuturaCyrillicLight.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 
@font-face {
     font-family: 'Futura PT Normal';
     src: local('Futura PT Normal'),
         url('/webfont/FuturaCyrillicMedium.woff2') format('woff2'),
         url('/webfont/FuturaCyrillicMedium.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}

@font-face {
     font-family: 'Futura PT Bold';
     src: local('Futura PT Bold'),
         url('/webfont/FuturaCyrillicBold.woff2') format('woff2'),
         url('/webfont/FuturaCyrillicBold.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}