/**
 * NextBio Website - Fonts
 * Suit 폰트 로드 및 설정
 */

/* Suit 폰트 로드 */
@font-face {
  font-family: 'Suit';
  src: url('../fonts/Suit-Regular.woff2') format('woff2'),
       url('../fonts/Suit-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('../fonts/Suit-Medium.woff2') format('woff2'),
       url('../fonts/Suit-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('../fonts/Suit-SemiBold.woff2') format('woff2'),
       url('../fonts/Suit-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('../fonts/Suit-Bold.woff2') format('woff2'),
       url('../fonts/Suit-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('../fonts/Suit-ExtraBold.woff2') format('woff2'),
       url('../fonts/Suit-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* 전역 폰트 설정 - 모든 페이지에 SUIT 폰트 적용 */
html {
  font-family: var(--font-family-suit);
}

body {
  font-family: var(--font-family-suit);
}
