Word to PDF issue with Montserrat medium font

Hi!
I’m using integration with Aspose.PDF and I have an Issue with Montserrat Medium font.
I have installed this font on my server
https://fontsfree.net/montserrat-medium-font-download.html#google_vignette

Then I am trying to convert word file with this font to pdf and as a result Montserrat Medium font converted to Courier New font.

Any ideas how to fix it?
New report.docx (12.9 KB)
New report.pdf (54.0 KB)

@sparrow.creatio The problem occurs because font is not available on the machine where the conversion is performed. In this case Aspose.Words substitutes the missed font with an alternative one. You should either install the font or specify the font location. For example see the following code:

Document doc = new Document(@"C:\Temp\in.docx");
doc.FontSettings = new FontSettings();
doc.FontSettings.SetFontsSources(new FontSourceBase[] { new SystemFontSource(), new FolderFontSource(@"C:\Temp\fonts", true) });
doc.Save(@"C:\Temp\out.pdf");

Also, you can implement IWarningCallback to get a notification when font substitution is performed.