// Font declarations live next to the entry sass file so relative `url(...)`
|
// paths in `@font-face` resolve correctly against the compiled CSS source
|
// location. That lets plain Vite/Rollup emit each referenced font as a hashed
|
// asset without a custom resolver plugin.
|
|
@font-face
|
font-family: 'Roboto'
|
src: url('../font/Roboto/Roboto.ttf') format('truetype')
|
font-weight: 100 900
|
font-display: swap
|
|
@font-face
|
font-family: 'NewParisKingSizeRegular'
|
font-style: normal
|
font-weight: 400
|
font-display: swap
|
src: url('../font/NewParisKingSize/NewParisKingSize-Regular.otf')
|
|
@font-face
|
font-family: 'Futura'
|
font-style: normal
|
font-weight: 400
|
font-display: swap
|
src: url('../font/Futura/FuturaStdMedium.otf')
|
|
@font-face
|
font-family: 'MullerRegular'
|
font-style: normal
|
font-weight: 400
|
font-display: swap
|
src: url('../font/Muller/FontfabricMullerRegular.otf')
|
|
|
/* Fonts made from http://www.onlinewebfonts.com is licensed by CC BY 3.0 */
|
@font-face
|
font-family: "Maax Bold"
|
font-display: swap
|
src: url("../font/Maax Bold/MaaxBold.woff2") format("woff2"), url("../font/Maax Bold/MaaxBold.woff") format("woff"), url("../font/Maax Bold/MaaxBold.ttf") format("truetype")
|
|
/* Fonts made from http://www.onlinewebfonts.com is licensed by CC BY 3.0 */
|
@font-face
|
font-family: "Maax Regular"
|
font-display: swap
|
src: url("../font/Maax Regular/MaaxRegular.woff2") format("woff2"), url("../font/Maax Regular/MaaxRegular.woff") format("woff"), url("../font/Maax Regular/MaaxRegular.ttf") format("truetype")
|