How can I access a specific font face contained within a TTF font file?
I want to access "Avenir Medium", which is one of 12 faces contained within the font file named "Avenir.ttf".
CSS allows me to specify the font file (src:...), the family name (fontFamily), and the weight (fontWeight).
The file, of course, is the same for every face within the TTF file, so that doesn't help.
The family is Avenir. Am I supposed to use some version of "Avenir Medium" in the fontFamily param? Nothing I've tried has worked.
The weight is Medium, but that is not an option for the CSS param fontWeight, so this does not seem to be the way to do it.
In Photoshop the font is accessed via the Family pull-down (Avenir) and the Syle pull-down (Medium).
I have not found a way to split the TTF file into separate files for each face, though that would seem to be the simplest solution.
