I am using the description environment for a set of definitions. A label that I have is too long to fit in the left margin of the page. I do not know how to force a line break in the item label - nor do I want to. Is there a way to get the description environment to detect when a label is too long and have it break such that that the item label is still right aligned?
Note: My question is different than the question mentioned in the comments because I specifically want the label in the margin, not inside the main body of the page.
\documentclass[12pt, letterpaper, oneside, draft]{memoir}
\usepackage{enumitem}
% itemize environment configuration
\setlist[itemize]{noitemsep, topsep=0pt}
\begin{document}
\begin{description}[align=right]
\item[Rate of Reinforcement] Text that doesn't matter. The label is the same label that I need to use.
\end{description}
\end{document}
Edit (followup): I implemented the solution from the accepted answer, however now I get this. Any idea on why there are now question marks leading the label?


