In variables.less, in the typography section there is a variable called @altfontfamily.
I want to make use of the Alt Font Family but I don’t know how. Is there a class I call to use it? Or is it there to use as a tool for me to make my own class, like this:
.serif-link {
font-family: @altFontFamily;
}
Less is a system for extending CSS. In this case it allows assigning values for variables and then using them in many places in the css files.
As the header at the top of the file variables.less says:
Later there is a section saying something like:
The baseFontFamily is used in couple places to set the style but I didn’t find altFontFamily anywhere. So, I guess it is something reasonable you can use if you want, just as you suggested..