Apologies if this is not worded correctly. I am using the memoir class. I wish to use another type of font, globally, for the text in my document. I figured this should be a trivial task. In lots of the templates I see, in the preamble I see things like this:
\usepackage[T1]{fontenc} % package for font encodings
\usepackage[osf]{Alegreya,AlegreyaSans} % here's the font(s) they want to use
As I understand, the useage of this fontenc package is recommended. My question is - what fonts are actually available using this fontenc package? For example, when I try to use 'Typewriter', i.e.
\usepackage[T1]{fontenc}
\usepackage[osf]{Typewriter} % referencing font name given in Table 2.3 of memoir class documentation http://texdoc.net/texmf-dist/doc/latex/memoir/memman.pdf
which is a font mentioned in the memoir class documentation, I just get the error 'no typewriter.sty'. But when I use this one above (which I found in a template), it works. Does anyone know if there is documentation somewhere, where I can see a list of what fonts are available to me, to use in this way? (and perhaps with examples of what those fonts look like?)
I should note that I do see in the memoir class documentation, about how to change the font. But it seems to be for changing it locally - i.e., \ttfamily will set the text after that, as Typewriter text. However, I want to change the font setting for the entire document. Alternatively - is there another approach (other than fontenc) which is trivial, for setting global font properties, which is recommended?