/*
 * Shared web font, consumed by both the portal CSS (browsers pick woff2) and
 * the WeasyPrint PDF stylesheets (which load the otf fallback). Single source
 * so documents and screens render the same typeface.
 */
@font-face {
  font-family: "D-DIN";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("fonts/D-DIN.woff2") format("woff2"),
    url("fonts/D-DIN.otf") format("opentype");
}

@font-face {
  font-family: "D-DIN";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("fonts/D-DIN-Bold.woff2") format("woff2"),
    url("fonts/D-DIN-Bold.otf") format("opentype");
}
