I need to change the font of my app but I'm having a hard time doing it.
I've added under assets/font
the files for the font:
Then in styles.scss:
@include mat-core();
$WebClientTemplateJwtA8-primary: mat-palette($mat-indigo);
$WebClientTemplateJwtA8-accent: mat-palette($mat-pink, A200, A100, A400);
$WebClientTemplateJwtA8-warn: mat-palette($mat-red);
$WebClientTemplateJwtA8-theme: mat-light-theme($WebClientTemplateJwtA8-primary, $WebClientTemplateJwtA8-accent, $WebClientTemplateJwtA8-warn);
@include angular-material-theme($WebClientTemplateJwtA8-theme);
html, body { height: 100%; font-size: 16px; font-size: 1rem; font-family: 'Lato', sans-serif;}
But it doesn't apply my custom font.