/* ============================================================
   근태관리 매니저 — 기본 서체
   Pretendard (SIL Open Font License 1.1)
   4종: Regular 400 / Medium 500 / SemiBold 600 / Bold 700
   확정: 2026-08-25 (C님 지정)

   사용법: 이 파일을 앱의 CSS에서 import 하고,
          body { font-family: var(--font-sans); } 로 적용합니다.
   ============================================================ */

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("./PretendardRegular.woff") format("woff");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("./PretendardMedium.woff") format("woff");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("./PretendardSemiBold.woff") format("woff");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("./PretendardBold.woff") format("woff");
}

:root {
  /* 본문·UI 전반 */
  --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont,
               "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic",
               system-ui, sans-serif;

  /* 시각·근무시간 등 숫자가 세로로 정렬되어야 하는 곳 */
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* 숫자 정렬이 필요한 요소에 적용
   (근태 표의 시각·시간, 잔여 연차, 집계 숫자 등) */
.tabular {
  font-variant-numeric: tabular-nums;
}
