/* Licensed webfonts only: Myriad Pro (Regular, Italic, Bold, Bold Italic) + Eurostile Std Black Italic.
   Each weight/style maps to a real file so bold/italic are never browser-simulated (faux).
   Font files live next to this CSS, so url() uses bare filenames (works from both the theme cdn and WebDAV). */

@font-face {
    font-family: "Eurostile";
    src: url('font_Eurostile_Black_Italic.woff2') format('woff2'),
         url('font_Eurostile_Black_Italic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "MyriadPro";
    src: url('MYRIADPRO-REGULAR.woff2') format('woff2'),
         url('MYRIADPRO-REGULAR.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MyriadPro";
    src: url('MYRIADPRO-IT.woff2') format('woff2'),
         url('MYRIADPRO-IT.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "MyriadPro";
    src: url('MYRIADPRO-BOLD.woff2') format('woff2'),
         url('MYRIADPRO-BOLD.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MyriadPro";
    src: url('MYRIADPRO-BOLDIT.woff2') format('woff2'),
         url('MYRIADPRO-BOLDIT.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
