フォントをダウンロードして、app/javascript/src配下に置く
app/javascript/src/style.scssにフォントのパスを記入と使用
@font-face {
font-family: "maru-gosic";
src: url('./Corporate-Logo-Rounded.ttf') format('truetype');
}
html {
font-family: "maru-gosic";
}
これで、OK!!
参考: https://anthonybroadcrawford.com/2020/02/14/custom-fonts-rails-six.html