/* 금강방재 MES — 글씨체를 SimThink ES 지면과 맞춘다 (2026-09-21 CEO msg 9535).
   OpenMES 는 Tailwind 의 CSS 변수로 글꼴을 정한다 — 변수만 덮으면 본체를 다시 굽지 않아도 전 화면이 따라온다.
   숫자·코드의 고정폭은 Geist Mono 를 그대로 두고, 거기 없는 한글만 Pretendard 로 받는다. */
:root {
  --font-sans: "Pretendard Variable", Pretendard, "Geist", ui-sans-serif, system-ui, -apple-system, "Malgun Gothic", sans-serif;
  --font-mono: "Geist Mono", "Pretendard Variable", Pretendard, ui-monospace, SFMono-Regular, Menlo, monospace;
}
html, body, button, input, select, textarea { font-family: var(--font-sans); }
