/**
 * src/index.css에서 폰트파일의 상대경로를 다루기 어렵기 떄문에
 * 폰트 관련 스타일 파일은 이렇게, public 하위 스타일시트 파일을 이용한다.
*/

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

@font-face {
  font-family: 'KimjungchulGothic';
  src: url('./font/KimjungchulGothic-RegularA1.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'KimjungchulGothic';
  src: url('./font/KimjungchulGothic-BoldA1.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
