I came to the problem with naming font flavors within one font-family. The project I'm implementing is using 10 of them.
The font in question is Sequel Sans and it has 48 flavors. One can download it from here if interested.
I found this post, but my issue goes beyond that. I did first one like this:
@font-face {
font-family: 'Sequel Sans';
src: url('Sequel Sans Book Disp.ttf') format('truetype');
font-weight: normal;
}
but not really sure about naming the other 9 (not to mention more, but 10 is what I'm working with now). Any resource I could read that goes about this problem? Especially that font weights for each are not provided (would they be I would just go after that and call it a day).