I am writing some text using the \calligra font and there are some specific instances where I want to manually reduce the kerning between letters.
See the MWE below. I have reduced the kerning between the N and a letters using \kern-0.2em.
\documentclass{article}
\usepackage{calligra}
\usepackage[T1]{fontenc}
\begin{document}
\calligra
Insert Name\vspace{.2cm}
Insert N\kern-0.2em ame
\end{document}
Is there a way to make this automatic? So I don't have to type \kern after every N?
I have seen this question which shows automatic kerning rules can be done using a macro defined in the preamble. But, this case was for one specific combination of characters. I want to make it general for every character that follows an N. I am not sure how to do this.

