/**
 * Pretendard — 셀프호스팅
 *  - font-display: swap → 폰트 로드 전 시스템 폰트로 먼저 표시 (FOIT 방지)
 *
 *  업로드된 파일 (assets/fonts/pretendard/):
 *    Pretendard-Regular.woff2  (400)
 *    Pretendard-Medium.woff2   (500)
 *    Pretendard-Bold.woff2     (700)
 */

@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/pretendard/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/pretendard/Pretendard-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/pretendard/Pretendard-Bold.woff2') format('woff2');
}
