/*
 * SVAI brand font — DM Mono (AEMSNOW-2601).
 *
 * DM Mono is the SVAI brand typeface. Self-hosted from our own origin to remove
 * the third-party Google Fonts dependency (fonts.googleapis.com / fonts.gstatic.com)
 * used by the legacy WordPress site. Body text stays Lato (already self-hosted);
 * Inter is intentionally NOT self-hosted (it was only a WordPress local() crutch
 * for Texta-Black, which AEM already ships).
 *
 * Loaded ONLY on SVAI-brand pages via a server-side gate
 * (PageModel.getSiteId() == 'svai' -> customheaderlibs.html). The element-level
 * font-family assignment (which heading/nav/eyebrow/code uses DM Mono) is owned
 * by the design team's CSS and hangs off the server-rendered `.site-svai` body
 * class (see docs/msm/msm-theming-guide.md); this file only makes DM Mono available.
 *
 * Latin subset, woff2-only, font-display: swap — consistent with the other
 * self-hosted families (see fonts-latin.css). OFL license ships alongside (OFL-DMMono.txt).
 */

/* DM Mono — SVAI brand font (headings/display/nav/eyebrows/code, per design CSS) */
@font-face {
  font-family: 'DM Mono';
  src: url('/fonts/DMMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('/fonts/DMMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
