40 lines
953 B
CSS
40 lines
953 B
CSS
/* src/styles/fonts.css */
|
|
@font-face {
|
|
font-family: 'Baloo 2';
|
|
src: url('@/assets/fonts/BalooDa2/BalooDa2-Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Baloo 2';
|
|
src: url('@/assets/fonts/BalooDa2/BalooDa2-Medium.ttf') format('truetype');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Baloo 2';
|
|
src: url('@/assets/fonts/BalooDa2/BalooDa2-SemiBold.ttf') format('truetype');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Baloo 2';
|
|
src: url('@/assets/fonts/BalooDa2/BalooDa2-Bold.ttf') format('truetype');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Baloo 2';
|
|
src: url('@/assets/fonts/BalooDa2/BalooDa2-ExtraBold.ttf') format('truetype');
|
|
font-weight: 800;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
} |