/* ELB — Webfont declarations
 *
 * SUBSTITUTION NOTE: The brand spec specifies Malgun Gothic (맑은 고딕), which is a
 * Microsoft system font and cannot be redistributed as a webfont. We load
 * Noto Sans KR from Google Fonts as the cross-platform fallback so layouts render
 * consistently on machines that lack Malgun Gothic. Both are humanist Korean
 * sans-serifs with very close metrics. On Windows, Malgun Gothic is preferred
 * via the --font-sans stack. See readme.md and flag to the ELB team if exact
 * Malgun Gothic web rendering is required (a licensed webfont kit would be needed).
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

/* System-font registrations — declare the brand families so they are recognised
 * without shipping a binary. If the font is installed locally (e.g. Malgun Gothic
 * on Windows, Cascadia Mono in dev environments) it is used; otherwise the
 * --font-* fallback stack (Noto Sans KR, etc.) renders. No substitution of the
 * named family — only a local() reference. */
@font-face {
  font-family: "Malgun Gothic";
  src: local("Malgun Gothic"), local("MalgunGothic"), local("맑은 고딕");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cascadia Mono";
  src: local("Cascadia Mono"), local("CascadiaMono");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
