/*
 * Party Arcade 하이브리드 폰트 자체 호스팅 (v3.14.35)
 *
 * 기본 게임 모드      → SUIT Variable (둥글고 친근, 게임 분위기)
 * Excel/PPT/Outlook  → Pretendard (Office 표준)
 * IDE                → D2Coding (네이버 코딩 폰트)
 *
 * 모든 폰트: SIL Open Font License 1.1 (상업적 사용 무료)
 * font-display: swap → 로딩 중 시스템 폰트로 즉시 표시 (FOIT 방지)
 */

/* ────────────────────────────────────────
   SUIT Variable - 기본 게임 모드 (게임 분위기 ⭐)
   출처: https://github.com/sun-typeface/SUIT
   라이센스: SIL Open Font License 1.1
   ──────────────────────────────────────── */
@font-face {
  font-family: 'SUIT Variable';
  font-weight: 100 900; /* 가변 폰트 - 모든 굵기 단계 */
  font-style: normal;
  font-display: swap;
  src: url('/fonts/SUIT-Variable.woff2') format('woff2-variations'),
       url('/fonts/SUIT-Variable.woff2') format('woff2');
}

/* ────────────────────────────────────────
   Pretendard - 위장 모드 (Office 표준)
   출처: https://github.com/orioncactus/pretendard
   라이센스: SIL Open Font License 1.1
   ──────────────────────────────────────── */
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Pretendard-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Pretendard-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Pretendard-Bold.woff2') format('woff2');
}

/* ────────────────────────────────────────
   D2Coding - IDE 모드 (네이버 코딩 폰트)
   출처: https://github.com/naver/d2codingfont
   라이센스: SIL Open Font License 1.1
   ──────────────────────────────────────── */
@font-face {
  font-family: 'D2Coding';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/D2Coding-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'D2Coding';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/D2Coding-Bold.woff2') format('woff2');
}
