I need to use Adobe Garamond Pro on LaTeX to build an editorial layout. I installed the Adamond Garamond Pro font files (Regular, Bold, Italic, BoldItalic, SemiBold, SemiBoldItalic) on my computer (MacBook Air 2021) and try to use it with TexLive 2021, compiling in LuaLaTeX. Unfortunately, there are some problems with ligatures (mainly ff) and with small capitals which are replaced by some symbol:
I also tried the solution mentionned here but without success. I am a beginner in LuaLaTeX so maybe there is something wrong with my installation... Here is a exemple (that I compiled on my computer and on Overleaf) :
% !TeX program = lualatex
%!TEX encoding = UTF-8 Unicode
\documentclass[a4paper,11pt]{article}
\usepackage[english, french]{babel}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Adobe Garamond Pro}
%\setmainfont[ Ligatures={TeX, Common}]{AGaramondPro-Regular}[
% BoldFont = AGaramondPro-Bold,
% ItalicFont = AGaramondPro-Italic,
% BoldItalicFont = AGaramondPro-BoldItalic]
\addfontfeatures{RawFeature = +smcp}
\addfontfeatures{RawFeature = -liga}
\usepackage{microtype}
\usepackage[mdpgd]{mathdesign}% thanks to Ulrike Fisher
\usepackage{csquotes}
\begin{document}
\textsc{Essai en petites capitales}
ff fi fl ffi ffl fj ct st
\end{document}
Thank you very muchfor you help.


