* @param postScriptName PostScript font name
*/
private static CFFFont getCFFFont(String postScriptName)
{
// first ask the font provider for the font
CFFFont cff = getProvider().getCFFFont(postScriptName);
if (cff == null)
{
// then try substitutes
for (String substituteName : getSubstitutes(postScriptName))
{