/* 
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 Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedregular.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: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedlight.woff2') format('woff2');
     font-weight: 100;
     font-style: normal;
     font-display: swap;
 }

  @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedmedium.woff2') format('woff2');
     font-weight: 600;
     font-style: normal;
     font-display: swap;
 }

@font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedbold.woff2') format('woff2');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedblack.woff2') format('woff2');
     font-weight: 900;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condenseditalic.woff2') format('woff2');
     font-weight: normal;
     font-style: italic;
     font-display: swap;
}

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedblackitalic.woff2') format('woff2');
     font-weight: 900;
     font-style: italic;
     font-display: swap;
}

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedbolditalic.woff2') format('woff2');
     font-weight: bold;
     font-style: italic;
     font-display: swap;
}

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedmediumitalic.woff2') format('woff2');
     font-weight: 600;
     font-style: italic;
     font-display: swap;
}

 @font-face {
     font-family: 'DIN Pro Cond';
     src: local('DIN Pro Cond'),
         url('/webfont/dinpro_condensedlightitalic.woff2') format('woff2');
     font-weight: 100;
     font-style: italic;
     font-display: swap;
}