I am setting up the packages for a shared project with someone who's not familiar with LaTeX. I want to use some of our local fonts. I used XeLaTeX and it works. However, we'll also use a notebook where these fonts might not be available.
As I intend to minimise the need of modification on the packages loaded, I would like to know whether there is a way to specify alternatives fonts to XeLaTeX in case it doesn't find the first one (as it is done in HTML/CSS for example).
Here is a mwe:
\documentclass[11 pt, a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\setmainfont{Adobe Garamond Pro}
\begin{document}
This should be in \textit{Adobe Garamond Pro} if available.
\end{document}
,is the user's choice. – Sean Allred Sep 16 '14 at 22:24