I was using custom font in angular 17, First I import custom font in style.scss
and then i used the piece of code and just changed font variable in mat.define-typegraphy-config($font-family: '"custom_font_name"')
.
@use '@angular/material' as mat;
$open-sans-typography: mat.define-typography-config($font-family: '""');
@include mat.typography-hierarchy($open-sans-typography);
$app-theme: mat.define-light-theme(( typography: $open-sans-typography ));
@include mat.all-component-themes($app-theme);