/* 폰트를 별도 CSS 파일로 분리하여 중복 로드 방지 */
@font-face {
  font-family: 'Sans';
  src: url('/fonts/Sans-Regular_A.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sans';
  src: url('/fonts/Sans-Bold_A.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sans';
  src: url('/fonts/Sans-Light_A.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
