﻿/* Local fallback fonts (offline / intranet) */
@font-face {
  font-family: "Noto Sans KR Local";
  src: url("/static/fonts/NotoSansKR-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --app-font-sans: system-ui, -apple-system, "Segoe UI", Roboto,
                   "Noto Sans KR Local",
                   "Apple SD Gothic Neo", "Malgun Gothic",
                   Arial, sans-serif;
}

body {
  font-family: var(--app-font-sans);
}
