/*
 * Enterprise Sans VF — global brand font.
 *
 * The Skyline OptumDefault theme sets typography.fontFamily to
 * "EnterpriseSansVF", Arial, sans-serif but Skyline does NOT ship the
 * font files or an @font-face rule, so browsers fall back to Arial.
 *
 * These @font-face rules load the font so the whole site renders in
 * Enterprise Sans VF. Font files live in:
 *   public/assets/fonts/EnterpriseSansVF/
 *
 * Enterprise Sans VF is a variable font: one file covers the full weight
 * axis (100–900). Roman = upright/normal, Italic = italic style.
 */

@font-face {
  font-family: 'EnterpriseSansVF';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Roman.woff2') format('woff2-variations'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Roman.woff2') format('woff2'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Roman.woff') format('woff');
}

@font-face {
  font-family: 'EnterpriseSansVF';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src:
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Italic.woff2') format('woff2-variations'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Italic.woff2') format('woff2'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSansVF-Italic.woff') format('woff');
}

/*
 * Enterprise Serif Text VF — secondary brand serif (variable font).
 * Available for use (e.g. display headings) via font-family: 'EnterpriseSerifTextVF'.
 * Only .woff2 was provided (no .woff fallback).
 */

@font-face {
  font-family: 'EnterpriseSerifTextVF';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSerifTextVF-Roman.woff2') format('woff2-variations'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSerifTextVF-Roman.woff2') format('woff2');
}

@font-face {
  font-family: 'EnterpriseSerifTextVF';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src:
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSerifTextVF-Italic.woff2') format('woff2-variations'),
    url('/assets/fonts/EnterpriseSansVF/EnterpriseSerifTextVF-Italic.woff2') format('woff2');
}
