@font-face는 사용자 컴퓨터에 폰트가 설치되어있지 않아도, 서버에서 내려받아서 사용할 수 있는 방법이다. @font-face{ font-family:"폰트이름"; src:local("폰트이름1"), local("폰트이름2"), url("폰트주소") format("폰트포맷"); } font는 보통 global.css에서 적용한다. 해당 프로젝트에서는 src/styles/global.css에 있다. @font-face { font-family: 'Maplestory'; src: url('../../public/fonts/MaplestoryLight.otf') format('otf'); font-weight: normal; font-style: normal; font-display: swap; } @f..