Arial font is not working in other server (Linux), but working locally

Created HTML template and adding Arial font family in paragraph. Converted PDF using load options, but same font is not working in Linux server where as its working locally.

@ravicogni
Check is Arial fonts are installed in Linux.

var fonts = new InstalledFontCollection();
Console.WriteLine("installed fonts:");
foreach (FontFamily family in fonts.Families)
{
    Console.WriteLine(family.Name);
}