/*
 * Self-hosted copies of the fonts Pega serves via pyC11nCustomFonts.css.
 *
 * Family names are kept IDENTICAL to Pega's (InterstateLight / InterstateBold)
 * so any styles — ours or the Constellation embed's — that reference these
 * names resolve against these locally-hosted files. @font-face registers at the
 * document level, so it also applies inside the pega-embed content.
 *
 * Drop the two .woff2 files next to this CSS (see filenames in the src urls).
 */

@font-face {
  font-family: 'InterstateLight';
  src: url('./InterstateLight.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterstateBold';
  src: url('./InterstateBold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
