/*
 * Pretendard 공유 폰트 CSS
 * 위치: /Users/agent/shared-assets/fonts/pretendard/pretendard.css
 *
 * 사용법:
 *
 * [FastAPI 프로젝트]
 *   app.mount("/shared-fonts", StaticFiles(directory="/Users/agent/shared-assets/fonts"), name="shared-fonts")
 *   <link rel="stylesheet" href="/shared-fonts/pretendard/pretendard.css">
 *
 * [Express 프로젝트]
 *   app.use('/shared-fonts', express.static('/Users/agent/shared-assets/fonts'));
 *   <link rel="stylesheet" href="/shared-fonts/pretendard/pretendard.css">
 *
 * [React (Vite/CRA)]
 *   vite.config.ts server.proxy로 /shared-fonts 경로를 백엔드에 위임하거나,
 *   또는 이 파일의 절대 경로를 @import로 불러올 수 있음:
 *   @import url('/shared-fonts/pretendard/pretendard.css');
 *
 * [font-family 선언]
 *   font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
 */

@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('./woff2/Pretendard-Regular.woff2') format('woff2');
}

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

@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('./woff2/Pretendard-SemiBold.woff2') format('woff2');
}

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