/* @font-face rules for Myriad Pro. Place the licensed font files in ../fonts/ as instructed in README.
   The CSS includes multiple filename fallbacks commonly used by Myriad Pro webfont exports. */

/* Use the actual OTF files you placed in static/app/fonts/ */
@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Italic / Bold Italic fallbacks */
@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-BOLDIT.OTF') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-SEMIBOLDIT.OTF') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Helper class */
.mf-myriad { font-family: 'Myriad Pro', 'Myriad', 'Myriad Pro', 'Helvetica Neue', Arial, sans-serif; }
