If you are using GNAT (either the GPL version from AdaCore, or the FSF GCC one), you need a file document.ads (in the same working directory as you are going to put your main program and the other file).
Your new package Document needs to ‘with’ two other packages: Ada.Containers.Vectors and Ada.Strings.Unbounded.
You can’t put use Document; in document.ads; it needs to go in the packages that make use of Document by withing it. The use clause controls whether you need to write the fully qualified name - so, for example, to write Document as you have it you would say
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
package Document is new Ada.Containers.Vectors (Positive, Unbounded_String);
but it would be more conventional to write
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
package Document is new Ada.Containers.Vectors
(Positive,
Ada.Strings.Unbounded.Unbounded_String);
Your main program and other packages can now say with Document; (and, if you want, use Document;).