/* DINPro Black Italic */
@font-face {
  font-family: 'DINProBlackItalic';
  src: url('./fonts/DINPro-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
 
/* DINPro Condensed Medium Italic */
@font-face {
  font-family: 'DINProCondensedMediumItalic';
  src: url('./fonts/DINPro-CondMediIta.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
 
/* DINPro Condensed Black */
@font-face {
  font-family: 'DINProCondensedBlack';
  src: url('./fonts/DINPro-CondBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* DINPro Condensed */
@font-face {
  font-family: 'DINProCondensed';
  src: url('./fonts/DINPro-Cond.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Utility classes to easily apply them */
.dinpro-black-italic {
  font-family: 'DINProBlackItalic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
}
 
.dinpro-condensed-medium-italic {
  font-family: 'DINProCondensedMediumItalic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}