/*
  커스텀 폰트 선언
  - app/static/fonts/ 디렉터리에 폰트 파일(woff2/woff)을 두고 아래 src 경로 파일명을 맞춰 주세요.
  - 가변 폰트의 경우 format('woff2-variations')를 사용할 수 있습니다.
*/

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

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

/* Tailwind 프리플라이트보다 뒤에서 로드되어 전역 폰트를 덮어씌웁니다 */
html { font-family: 'AppSans', ui-sans-serif, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif; }


