The following app/concept names are reserved: mat, ng
Fonts
To embed a font in your app add an @import rule in your global
style file (styles.css). For example, to embed
the ‘Roboto’ font, you can do:
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
Then you can use it like this:
.text-using-awesome-font {
font-family: 'Roboto', sans-serif;
}