/* Pretendard — 로컬 배포본
   새 화면·새 컴포넌트·요청받은 리디자인의 기본 글꼴.
   적용할 페이지에서 <link rel="stylesheet" href="fonts/pretendard/pretendard.css">로 연결한다.

   가변 폰트 1개(PretendardVariable.woff2, 45~920 weight)를 우선 사용하고,
   가변 폰트 미지원 브라우저는 static/ 의 서브셋 9종으로 대체된다.
   원본: C:\Users\LS\Downloads\프리텐다드\ (LICENSE.txt 동봉 — SIL Open Font License) */

@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('./PretendardVariable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Thin.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-ExtraLight.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Light.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Regular.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Medium.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-SemiBold.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Bold.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-ExtraBold.subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('./static/Pretendard-Black.subset.woff2') format('woff2');
}

/* 페이지에서 재사용할 기본 폰트 스택 */
:root {
  --font-pretendard: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}
