/*****외부에서 다운로드한 폰트파일을 fonts.css에서 import해줍니다*****/
/*****import해준 후 원하시는 css파일에서 폰트적용하고싶은 요소에 font-family 적용해줍니다*****/
/*****css 하나에 다 처넣으면 넘 길어지기에 폰트 css를 따로 만들어줌*****/



@font-face {
  font-family: "ApfelGrotezk-Fett";
  src: url("../fonts/ApfelGrotezk-Fett.woff2") format("woff2"),
    url("../fonts/ApfelGrotezk-Fett.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ChosunCentennialA1";
  src: url("../fonts/ChosunCentennialA1.woff2") format("woff2"),
    url("../fonts/ChosunCentennialA1.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PicNic";
  src: url("../fonts/PicNic.woff2") format("woff2"), /***콤마 꼭 붙여주세요***/
    url("../fonts/PicNic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HGHG";
  src: url("../fonts/ThinDungGeunMo.woff2") format("woff2"), /***콤마 꼭 붙여주세요***/
    url("../fonts/ThinDungGeunMo.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}