/*
 * Proxima Nova. Files live on cdn.dukeswines.com (see tools/assets/manifest.json); this stylesheet
 * is served same-origin and points at them.
 *
 * THE BUG THIS FIXES. Every face was registered `font-weight: 400`, and only the Regular was
 * called "Proxima Nova" — the Semibold, Bold and Black sat under invented family names
 * (`proxima_nova_ltsemibold`, `proxima_nova_altbold`, `proxima_nova_altblack`) that the app never
 * referenced and could not have used. So the theme asked for `fontWeight: 600` and `700` on every
 * button, heading, eyebrow and label, the browser found no such face, and it SYNTHESISED one —
 * algorithmically smearing the regular. The real bold fonts were sitting on the CDN, downloaded,
 * and never once drawn.
 *
 * One family, four real weights. Nothing else needed to change: the theme was already asking for
 * the right thing.
 *
 * `font-display: swap` because there was none at all, which means FOIT — the text was invisible
 * until the font arrived. Better to draw it in the fallback and swap.
 *
 * Formats: woff2, with woff as the fallback. The old build also shipped .eot (IE8) and .svg
 * (iOS 4) — both long dead, and neither could run this app anyway.
 */


/* 400 — body text */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltRegularwebfont.7433a098.woff2') format('woff2'),
        url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltRegularwebfont.3db57786.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 600 — h5, subtitle2, buttons */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaSemiboldwebfont.76680efd.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* 700 — h6, overline */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltBoldwebfont.3529551e.woff2') format('woff2'),
        url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltBoldwebfont.a085d982.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 900 — reserved — nothing uses it yet */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltBlackwebfont.a888dc7e.woff2') format('woff2'),
        url('https://cdn.dukeswines.com/assets/fonts/MarkSimonsonProximaNovaAltBlackwebfont.50a789fa.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
