/* =====================================================================
   Pretendard — 자체 호스팅 글꼴  (외부 CDN 없이 내 서버에서 직접 로딩)
   폰트 파일 위치: /assets/fonts/  (이 CSS와 같은 폴더)
   사용법: HTML <head> 에  <link rel="stylesheet" href="/assets/fonts/pretendard.css">
   ===================================================================== */

@font-face {
	font-family: "Pretendard";
	font-weight: 400;                     /* 보통 (Regular) */
	font-style: normal;
	font-display: swap;                   /* 폰트 로딩 전에도 글자 즉시 표시 */
	src: url("Pretendard-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Pretendard";
	font-weight: 500;                     /* 중간 (Medium) */
	font-style: normal;
	font-display: swap;
	src: url("Pretendard-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Pretendard";
	font-weight: 600;                     /* 약간 굵게 (SemiBold) */
	font-style: normal;
	font-display: swap;
	src: url("Pretendard-SemiBold.woff2") format("woff2");
}

@font-face {
	font-family: "Pretendard";
	font-weight: 700;                     /* 굵게 (Bold) */
	font-style: normal;
	font-display: swap;
	src: url("Pretendard-Bold.woff2") format("woff2");
}
