/* 
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: 'Din';
     src: local('Din'),
         url('/webfont/Din.ttf') format('ttf'),
         url('/webfont/Din.ttf') format('ttf');
     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: 'Din-Bold';
     src: local('Din-Bold'),
         url('/webfont/Din-Bold.ttf') format('ttf'),
         url('/webfont/Din-Bold.ttf') format('ttf');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Din-Black';
     src: local('Din-Black'),
         url('/webfont/Din-Black.ttf') format('ttf'),
         url('/webfont/Din-Black.ttf') format('ttf');
     font-weight: 700;
     font-style: normal;
     font-display: swap;
}