/*
 * 로컬 호스팅 웹폰트 — CDN 의존 제거
 *
 * Pretendard Variable + SUITE Variable을 로컬 woff2로 로드.
 * → 브라우저 Tracking Prevention 에러 해소
 * → PWA 오프라인 캐시 가능
 *
 * Noto Sans KR / IBM Plex Sans KR은 Google Fonts CDN 유지
 * (Google 도메인은 브라우저 추적 방지 대상이 아님)
 */

/* Pretendard Variable — 핀테크 앱 최적 서체 (기본 폰트) */
@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/PretendardVariable.woff2') format('woff2-variations');
}

/* Pretendard (일반 이름 fallback) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/PretendardVariable.woff2') format('woff2-variations');
}

/* SUITE Variable — 산돌 기반 현대적 고딕 */
@font-face {
  font-family: 'SUITE Variable';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/SUITE-Variable.woff2') format('woff2-variations');
}

/* SUITE (일반 이름 fallback) */
@font-face {
  font-family: 'SUITE';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/SUITE-Variable.woff2') format('woff2-variations');
}
