/* static/css/style.css */
@font-face {
  font-family: 'MyFont';                   /* 這個名字可自訂，後續用來引用 */
  src: url('../fonts/MyFont.otf')  format('opentype'),
       url('../fonts/MyFont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 接著把全站預設字體改為這支 */
body {
  font-family: 'MyFont', sans-serif;
}

