@import './fonts.css';
ex) 아래와 같이 폰트명, 경로/확장자 , font-weight를 각각 기입하면 됨.
@font-face{
font-family: '폰트명';
src: url('../fonts/폰트명-semi-bold.폰트확장자') format('폰트확장자');
font-weight: 600;
}
@font-face{
font-family: '폰트명';
src: url('../fonts/폰트명-Bold.폰트확장자') format('폰트확장자');
font-weight: 700;
}